home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / Zoomed Video Driver v1.0 SDK / Tools / PC Card DispNameReg / Src / SystemSoft.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-02  |  1.1 KB  |  48 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        SystemSoft.h
  3.  
  4.     Contains:    SystemSoft modifications to Display Name Registry
  5.     
  6.     Written by: Dave Tarabar
  7.  
  8.     Copyright © 1996 SystemSoft Corp. All rights reserved.
  9.     
  10.     Change History (most recent first):
  11.  
  12. */
  13.  
  14. #ifndef __SYSTEMSOFT_H__
  15. #define __SYSTEMSOFT_H__
  16.  
  17. #include <DiskInit.h>
  18.  
  19. // this flag is used to condition the SYSF changes
  20.  
  21. #define SYSF 1
  22.  
  23. // no need to print out long binary dumps (like driver code) so we will limit
  24. // the number of lines in a hex dump
  25.  
  26. #define    kMaxLinesToPrint    10
  27.  
  28. // we only care about PC card related name registry entries
  29. // they begin with the following prefix
  30.  
  31. #define WECARE "Devices:device-tree:bandit:ti1130"
  32. // for roms previous to D18
  33. #define WECARED "Devices:device-tree:bandit:pci104c"
  34. // on the 9500
  35. //#define WECARE "Devices:device-tree:bandit:pci"
  36.  
  37. // prefix for the first PC Card RegEntry
  38. #define WECARECARD "Devices:device-tree:bandit:ti1130:"
  39.  
  40. // define custom AppleEvents defined in the kAEMiscStandards event class
  41.  
  42. enum {
  43.      kDevRegSnapshot    =    'Snap'    ,
  44.      kDevRegRescan        =    'ReSc'    ,
  45.      kDevRegNoSockets    =    'NoSk'
  46. };
  47.  
  48. #endif /* __SYSTEMSOFT_H__ */